home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / littelcomp / r5 / lc / examples / helloworld2.l < prev    next >
Text File  |  2000-02-28  |  337b  |  18 lines

  1.    ; Hello World 2  in LITTEL 0.16 :)
  2.  
  3.    #include "app:progg/asm/phxass/examples/include/lib/dos.i"
  4.  
  5.    STRING _hello "hello world!\n"
  6.  
  7.    PROC main
  8.       copy _hello   d1         ; adr of string
  9.       copy 13       d2         ; lenght of string
  10.       call _DOSBase WriteChars ; print it
  11.    ENDPROC
  12.  
  13.    END  ;dont forget this one
  14.   
  15.  
  16.  
  17.  
  18.